All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.app.TextFieldCell

java.lang.Object
   |
   +----com.apple.alpha.core.NativeObject
           |
           +----com.apple.alpha.app.Cell
                   |
                   +----com.apple.alpha.app.ActionCell
                           |
                           +----com.apple.alpha.app.TextFieldCell

public class TextFieldCell
extends ActionCell
This class wraps the Objective-C class NSTextFieldCell.


Constructor Index

 o TextFieldCell()
This default constructor is equivalent to Objective-C's [[NSTextFieldCell alloc] init].
 o TextFieldCell(boolean, int)
Protected constructor used by the bridge to wrap an Objective-C object.
 o TextFieldCell(Coder)
This constructor has the same effect as calling - initWithCoder: on a newly allocated object.

Method Index

 o backgroundColor()
A wrapper for the - backgroundColor Objective-C instance method.
 o drawsBackground()
A wrapper for the - drawsBackground Objective-C instance method.
 o setBackgroundColor(Color)
A wrapper for the - setBackgroundColor: Objective-C instance method.
 o setDrawsBackground(boolean)
A wrapper for the - setDrawsBackground: Objective-C instance method.
 o setTextColor(Color)
A wrapper for the - setTextColor: Objective-C instance method.
 o setUpFieldEditorAttributes(Text)
A wrapper for the - setUpFieldEditorAttributes: Objective-C instance method.
 o textColor()
A wrapper for the - textColor Objective-C instance method.

Constructors

 o TextFieldCell
 protected TextFieldCell(boolean shouldAllocate,
                         int objcObject)
Protected constructor used by the bridge to wrap an Objective-C object. It should never be invoked directly.

 o TextFieldCell
 public TextFieldCell()
This default constructor is equivalent to Objective-C's [[NSTextFieldCell alloc] init].

 o TextFieldCell
 public TextFieldCell(Coder aDecoder)
This constructor has the same effect as calling - initWithCoder: on a newly allocated object.

Methods

 o setBackgroundColor
 public native void setBackgroundColor(Color color)
A wrapper for the - setBackgroundColor: Objective-C instance method.

 o backgroundColor
 public native Color backgroundColor()
A wrapper for the - backgroundColor Objective-C instance method.

 o setDrawsBackground
 public native void setDrawsBackground(boolean flag)
A wrapper for the - setDrawsBackground: Objective-C instance method.

 o drawsBackground
 public native boolean drawsBackground()
A wrapper for the - drawsBackground Objective-C instance method.

 o setTextColor
 public native void setTextColor(Color color)
A wrapper for the - setTextColor: Objective-C instance method.

 o textColor
 public native Color textColor()
A wrapper for the - textColor Objective-C instance method.

 o setUpFieldEditorAttributes
 public native Text setUpFieldEditorAttributes(Text textObj)
A wrapper for the - setUpFieldEditorAttributes: Objective-C instance method.

Overrides:
setUpFieldEditorAttributes in class Cell

All Packages  Class Hierarchy  This Package  Previous  Next  Index